home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / crt0 / brk.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-08  |  197 b   |  12 lines

  1. #include <stdio.h>
  2. #include <unistd.h>
  3.  
  4. int
  5. main(void)
  6. {
  7.   char *old = sbrk(0);
  8.   int new = brk(old+16);
  9.   printf("old was %p, new is %x, now at %p\n", old, new, sbrk(0));
  10.   return 0;
  11. }
  12.